home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet internetowy / Przegladarki internetowe / Mozilla Seamonkey 1.0.5 pl / seamonkey-1.0.5.pl-PL.win32.installer.exe / MAIL.XPI / bin / components / offlineStartup.js < prev    next >
Encoding:
Text File  |  2006-09-10  |  8.5 KB  |  266 lines

  1. /* -*- Mode: Java; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*-
  2.  * ***** BEGIN LICENSE BLOCK *****
  3.  * Version: MPL 1.1/GPL 2.0/LGPL 2.1
  4.  *
  5.  * The contents of this file are subject to the Mozilla Public License Version
  6.  * 1.1 (the "License"); you may not use this file except in compliance with
  7.  * the License. You may obtain a copy of the License at
  8.  * http://www.mozilla.org/MPL/
  9.  *
  10.  * Software distributed under the License is distributed on an "AS IS" basis,
  11.  * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
  12.  * for the specific language governing rights and limitations under the
  13.  * License.
  14.  *
  15.  * The Original Code is the Offline Startup Handler
  16.  *
  17.  * The Initial Developer of the Original Code is
  18.  * David Bienvenu.
  19.  * Portions created by the Initial Developer are Copyright (C) 2004
  20.  * the Initial Developer. All Rights Reserved.
  21.  *
  22.  * Contributor(s):
  23.  *  David Bienvenu <bienvenu@nventure.com> (Original Author)
  24.  *
  25.  * Alternatively, the contents of this file may be used under the terms of
  26.  * either the GNU General Public License Version 2 or later (the "GPL"), or
  27.  * the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
  28.  * in which case the provisions of the GPL or the LGPL are applicable instead
  29.  * of those above. If you wish to allow use of your version of this file only
  30.  * under the terms of either the GPL or the LGPL, and not to allow others to
  31.  * use your version of this file under the terms of the MPL, indicate your
  32.  * decision by deleting the provisions above and replace them with the notice
  33.  * and other provisions required by the GPL or the LGPL. If you do not delete
  34.  * the provisions above, a recipient may use your version of this file under
  35.  * the terms of any one of the MPL, the GPL or the LGPL.
  36.  *
  37.  * ***** END LICENSE BLOCK ***** */
  38. const kDebug               = false;
  39. const kBundleURI         = "chrome://messenger/locale/offlineStartup.properties";
  40. const kOfflineStartupPref = "offline.startup_state";
  41. var gStartingUp = true;
  42. var gOfflineStartupMode; //0 = remember last state, 1 = ask me, 2 == online, 3 == offline
  43. const kRememberLastState = 0;
  44. const kAskForOnlineState = 1;
  45. const kAlwaysOffline = 3;
  46. ////////////////////////////////////////////////////////////////////////
  47. //
  48. //   nsOfflineStartup : nsIObserver
  49. //
  50. //   Check if the user has set the pref to be prompted for
  51. //   online/offline startup mode. If so, prompt the user. Also,
  52. //   check if the user wants to remember their offline state
  53. //   the next time they start up.
  54. //
  55. ////////////////////////////////////////////////////////////////////////
  56.  
  57. var nsOfflineStartup =
  58. {
  59.   onProfileStartup: function()
  60.   {
  61.     debug("onProfileStartup");
  62.  
  63.     var ioService = Components.classes["@mozilla.org/network/io-service;1"]
  64.                               .getService(Components.interfaces.nsIIOService);
  65.     if (gStartingUp)
  66.     {
  67.       gStartingUp = false;
  68.       // if checked, the "work offline" checkbox overrides
  69.       if (ioService.offline) {
  70.         debug("already offline!");
  71.         return;
  72.       }
  73.     }
  74.  
  75.     var prefs = Components.classes["@mozilla.org/preferences-service;1"]
  76.                           .getService(Components.interfaces.nsIPrefBranch);
  77.     gOfflineStartupMode = prefs.getIntPref(kOfflineStartupPref);
  78.  
  79.     if (gOfflineStartupMode == kAlwaysOffline)
  80.     {
  81.       ioService.offline = true;
  82.     }
  83.     else if (gOfflineStartupMode == kRememberLastState)
  84.     {
  85.       ioService.offline = !prefs.getBoolPref("network.online");
  86.     }
  87.     else if (gOfflineStartupMode == kAskForOnlineState)
  88.     {
  89.       var promptService = Components.
  90.         classes["@mozilla.org/embedcomp/prompt-service;1"].
  91.         getService(Components.interfaces.nsIPromptService);
  92.  
  93.       var bundle = getBundle(kBundleURI);
  94.       if (!bundle)
  95.         return;
  96.  
  97.       var title = bundle.GetStringFromName("title");
  98.       var desc = bundle.GetStringFromName("desc");
  99.       var button0Text = bundle.GetStringFromName("workOnline");
  100.       var button1Text = bundle.GetStringFromName("workOffline");
  101.       var checkVal = {value:0};
  102.  
  103.       var result = promptService.confirmEx(null, title, desc,
  104.         (promptService.BUTTON_POS_0 * promptService.BUTTON_TITLE_IS_STRING) +
  105.         (promptService.BUTTON_POS_1 * promptService.BUTTON_TITLE_IS_STRING),
  106.         button0Text, button1Text, null, null, checkVal);
  107.       debug ("result = " + result + "\n");
  108.       if (result == 1)
  109.         ioService.offline = true;
  110.     }
  111.   },
  112.  
  113.   observe: function(aSubject, aTopic, aData)
  114.   {
  115.     debug("observe: " + aTopic);
  116.  
  117.     if (aTopic == "profile-change-net-teardown")
  118.     {
  119.       debug("remembering offline state");
  120.       var prefs = Components.classes["@mozilla.org/preferences-service;1"]
  121.                             .getService(Components.interfaces.nsIPrefBranch);
  122.       var ioService = Components.classes["@mozilla.org/network/io-service;1"]
  123.                                 .getService(Components.interfaces.nsIIOService);
  124.       prefs.setBoolPref("network.online", !ioService.offline);
  125.     }
  126.     else if (aTopic == "app-startup")
  127.     {
  128.       var observerService = Components.classes["@mozilla.org/observer-service;1"]
  129.                                       .getService(Components.interfaces.nsIObserverService);
  130.       observerService.addObserver(this, "profile-after-change", false);
  131.       observerService.addObserver(this, "profile-change-net-teardown", false);
  132.     }
  133.     else if (aTopic == "profile-after-change")
  134.     {
  135.       this.onProfileStartup();
  136.     }
  137.   },
  138.  
  139.  
  140.   QueryInterface: function(aIID)
  141.   {
  142.     if (aIID.equals(Components.interfaces.nsIObserver) ||
  143.         aIID.equals(Components.interfaces.nsISupports))
  144.       return this;
  145.  
  146.     Components.returnCode = Components.results.NS_ERROR_NO_INTERFACE;
  147.     return null;
  148.   }
  149. }
  150.  
  151.  
  152. var nsOfflineStartupModule =
  153. {
  154.   mClassName:     "Offline Startup",
  155.   mContractID:    "@mozilla.org/offline-startup;1",
  156.   mClassID:       Components.ID("3028a3c8-2165-42a4-b878-398da5d32736"),
  157.  
  158.   getClassObject: function(aCompMgr, aCID, aIID)
  159.   {
  160.     if (!aCID.equals(this.mClassID))
  161.       throw Components.results.NS_ERROR_NO_INTERFACE;
  162.     if (!aIID.equals(Components.interfaces.nsIFactory))
  163.       throw Components.results.NS_ERROR_NOT_IMPLEMENTED;
  164.  
  165.     return this.mFactory;
  166.   },
  167.  
  168.   registerSelf: function(aCompMgr, aFileSpec, aLocation, aType)
  169.   {
  170.     if (kDebug)
  171.       dump("*** Registering nsOfflineStartupModule (a JavaScript Module)\n");
  172.  
  173.     aCompMgr = aCompMgr.QueryInterface(
  174.                  Components.interfaces.nsIComponentRegistrar);
  175.     aCompMgr.registerFactoryLocation(this.mClassID, this.mClassName,
  176.       this.mContractID, aFileSpec, aLocation, aType);
  177.  
  178.     // Receive startup notification.
  179.     // We are |getService()|d at app-startup (before profile selection)
  180.     this.getCategoryManager().addCategoryEntry("app-startup",
  181.       "Offline-startup", "service," + this.mContractID, true, true);
  182.   },
  183.  
  184.   unregisterSelf: function(aCompMgr, aFileSpec, aLocation)
  185.   {
  186.     aCompMgr = aCompMgr.QueryInterface(
  187.                  Components.interfaces.nsIComponentRegistrar);
  188.     aCompMgr.unregisterFactoryLocation(this.mClassID, aFileSpec);
  189.  
  190.     this.getCategoryManager().deleteCategoryEntry("app-startup",
  191.       "Offline-startup", true);
  192.   },
  193.  
  194.   canUnload: function(aCompMgr)
  195.   {
  196.     return true;
  197.   },
  198.  
  199.   getCategoryManager: function()
  200.   {
  201.     return Components.classes["@mozilla.org/categorymanager;1"].
  202.       getService(Components.interfaces.nsICategoryManager);
  203.   },
  204.  
  205.   //////////////////////////////////////////////////////////////////////
  206.   //
  207.   //   mFactory : nsIFactory
  208.   //
  209.   //////////////////////////////////////////////////////////////////////
  210.   mFactory:
  211.   {
  212.     createInstance: function(aOuter, aIID)
  213.     {
  214.       if (aOuter != null)
  215.         throw Components.results.NS_ERROR_NO_AGGREGATION;
  216.  
  217.       // return the singleton 
  218.       return nsOfflineStartup.QueryInterface(aIID);
  219.     },
  220.  
  221.     lockFactory: function(aLock)
  222.     {
  223.       // quiten warnings
  224.     }
  225.   }
  226. };
  227.  
  228. function NSGetModule(aCompMgr, aFileSpec)
  229. {
  230.   return nsOfflineStartupModule;
  231. }
  232.  
  233. function getBundle(aURI)
  234. {
  235.   if (!aURI)
  236.     return null;
  237.  
  238.   debug(aURI);
  239.   var bundle = null;
  240.   try
  241.   {
  242.     var strBundleService = Components.
  243.       classes["@mozilla.org/intl/stringbundle;1"].
  244.       getService(Components.interfaces.nsIStringBundleService);
  245.     bundle = strBundleService.createBundle(aURI);
  246.   }
  247.   catch (ex)
  248.   {
  249.     bundle = null;
  250.     debug("Exception getting bundle " + aURI + ": " + ex);
  251.   }
  252.  
  253.   return bundle;
  254. }
  255.  
  256.  
  257. ////////////////////////////////////////////////////////////////////////
  258. //
  259. //   Debug helper
  260. //
  261. ////////////////////////////////////////////////////////////////////////
  262. if (!kDebug)
  263.   debug = function(m) {};
  264. else
  265.   debug = function(m) {dump("\t *** nsOfflineStartup: " + m + "\n");};
  266.